Login User on Platform (Public)
POST /api/v1/users/login/platform/public
Description
Login a user on the platform using public access.
Path Parameters
| Name | Type | Description |
|---|---|---|
| None | No parameters |
Request Body
- Content Type:
application/json
{
"username": "string",
"passId": "string"
}
Response Code: 201 - Created
Description
User logged in successfully.
Response Fields
The response does not contain any specific fields.
Method: POST
>http://your-api-url/api/v1/users/login/platform/public
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
Body
{
"username": "exampleUser",
"passId": "examplePassId"
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/users/login/platform/public \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!